home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / components / nsBrowserGlue.js < prev    next >
Text File  |  2007-10-18  |  9KB  |  277 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the Firefox Browser Glue Service.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Giorgio Maone
  18.  * Portions created by the Initial Developer are Copyright (C) 2005
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Giorgio Maone <g.maone@informaction.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38.  
  39.  
  40. // Constructor
  41.  
  42. function BrowserGlue() {
  43.   this._init();
  44. }
  45.  
  46. BrowserGlue.prototype = {
  47.   QueryInterface: function(iid) 
  48.   {
  49.      xpcomCheckInterfaces(iid, kServiceIIds, Components.results.NS_ERROR_NO_INTERFACE);
  50.      return this;
  51.   }
  52. ,
  53.   // nsIObserver implementation 
  54.   observe: function(subject, topic, data) 
  55.   {
  56.     switch(topic) {
  57.       case "xpcom-shutdown":
  58.         this._dispose();
  59.         break;
  60.       case "profile-change-teardown": 
  61.         this._onProfileShutdown();
  62.         break;
  63.       case "final-ui-startup":
  64.         this._onProfileStartup();
  65.         break;
  66.       case "browser:purge-session-history":
  67.         // reset the console service's error buffer
  68.         const cs = Components.classes["@mozilla.org/consoleservice;1"]
  69.                              .getService(Components.interfaces.nsIConsoleService_MOZILLA_1_8_BRANCH);
  70.         cs.logStringMessage(null); // clear the console (in case it's open)
  71.         cs.reset();
  72.         break;
  73.     }
  74.   }
  75.   // initialization (called on application startup) 
  76.   _init: function() 
  77.   {
  78.     // observer registration
  79.     const osvr = Components.classes['@mozilla.org/observer-service;1']
  80.                            .getService(Components.interfaces.nsIObserverService);
  81.     osvr.addObserver(this, "profile-change-teardown", false);
  82.     osvr.addObserver(this, "xpcom-shutdown", false);
  83.     osvr.addObserver(this, "final-ui-startup", false);
  84.     osvr.addObserver(this, "browser:purge-session-history", false);
  85.   },
  86.  
  87.   // cleanup (called on application shutdown)
  88.   _dispose: function() 
  89.   {
  90.     // observer removal 
  91.     const osvr = Components.classes['@mozilla.org/observer-service;1']
  92.                            .getService(Components.interfaces.nsIObserverService);
  93.     osvr.removeObserver(this, "profile-change-teardown");
  94.     osvr.removeObserver(this, "xpcom-shutdown");
  95.     osvr.removeObserver(this, "final-ui-startup");
  96.     osvr.removeObserver(this, "browser:purge-session-history");
  97.   },
  98.  
  99.   // profile startup handler (contains profile initialization routines)
  100.   _onProfileStartup: function() 
  101.   {
  102.     // check to see if the EULA must be shown on startup
  103.     try {
  104.       var mustDisplayEULA = true;
  105.       var prefService = Components.classes["@mozilla.org/preferences-service;1"]
  106.                                   .getService(Components.interfaces.nsIPrefBranch);
  107.       var EULAVersion = prefService.getIntPref("browser.EULA.version");
  108.       mustDisplayEULA = !prefService.getBoolPref("browser.EULA." + EULAVersion + ".accepted");
  109.     } catch(ex) {
  110.     }
  111.  
  112.     if (mustDisplayEULA) {
  113.       var ww2 = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  114.                          .getService(Components.interfaces.nsIWindowWatcher);
  115.       ww2.openWindow(null, "chrome://browser/content/EULA.xul", 
  116.                      "_blank", "chrome,centerscreen,modal,resizable=yes", null);
  117.     }
  118.  
  119.     this.Sanitizer.onStartup();
  120.     // check if we're in safe mode
  121.     var app = Components.classes["@mozilla.org/xre/app-info;1"].getService(Components.interfaces.nsIXULAppInfo)
  122.                         .QueryInterface(Components.interfaces.nsIXULRuntime);
  123.     if (app.inSafeMode) {
  124.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  125.                          .getService(Components.interfaces.nsIWindowWatcher);
  126.       ww.openWindow(null, "chrome://browser/content/safeMode.xul", 
  127.                     "_blank", "chrome,centerscreen,modal,resizable=no", null);
  128.     }
  129.   },
  130.  
  131.   // profile shutdown handler (contains profile cleanup routines)
  132.   _onProfileShutdown: function() 
  133.   {
  134.     // here we enter last survival area, in order to avoid multiple
  135.     // "quit-application" notifications caused by late window closings
  136.     const appStartup = Components.classes['@mozilla.org/toolkit/app-startup;1']
  137.                                  .getService(Components.interfaces.nsIAppStartup);
  138.     try {
  139.       appStartup.enterLastWindowClosingSurvivalArea();
  140.  
  141.       this.Sanitizer.onShutdown();
  142.  
  143.     } catch(ex) {
  144.     } finally {
  145.       appStartup.exitLastWindowClosingSurvivalArea();
  146.     }
  147.   },
  148.  
  149.   // returns the (cached) Sanitizer constructor
  150.   get Sanitizer() 
  151.   {
  152.     if(typeof(Sanitizer) != "function") { // we should dynamically load the script
  153.       Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
  154.                 .getService(Components.interfaces.mozIJSSubScriptLoader)
  155.                 .loadSubScript("chrome://browser/content/sanitize.js", null);
  156.     }
  157.     return Sanitizer;
  158.   },
  159.   
  160.   // ------------------------------
  161.   // public nsIBrowserGlue members
  162.   // ------------------------------
  163.   
  164.   sanitize: function(aParentWindow) 
  165.   {
  166.     this.Sanitizer.sanitize(aParentWindow);
  167.   }
  168.  
  169. }
  170.  
  171.  
  172. // XPCOM Scaffolding code
  173.  
  174. // component defined in this file
  175.  
  176. const kServiceName = "Firefox Browser Glue Service";
  177. const kServiceId = "{eab9012e-5f74-4cbc-b2b5-a590235513cc}";
  178. const kServiceCtrId = "@mozilla.org/browser/browserglue;1";
  179. const kServiceConstructor = BrowserGlue;
  180.  
  181. const kServiceCId = Components.ID(kServiceId);
  182.  
  183. // interfaces implemented by this component
  184. const kServiceIIds = [ 
  185.   Components.interfaces.nsIObserver,
  186.   Components.interfaces.nsISupports,
  187.   Components.interfaces.nsISupportsWeakReference,
  188.   Components.interfaces.nsIBrowserGlue
  189.   ];
  190.  
  191. // categories which this component is registered in
  192. const kServiceCats = ["app-startup"];
  193.  
  194. // Factory object
  195. const kServiceFactory = {
  196.   _instance: null,
  197.   createInstance: function (outer, iid) 
  198.   {
  199.     if (outer != null) throw Components.results.NS_ERROR_NO_AGGREGATION;
  200.  
  201.     xpcomCheckInterfaces(iid, kServiceIIds, 
  202.                           Components.results.NS_ERROR_INVALID_ARG);
  203.     return this._instance == null ?
  204.       this._instance = new kServiceConstructor() : this._instance;
  205.   }
  206. };
  207.  
  208. function xpcomCheckInterfaces(iid, iids, ex) {
  209.   for (var j = iids.length; j-- >0;) {
  210.     if (iid.equals(iids[j])) return true;
  211.   }
  212.   throw ex;
  213. }
  214.  
  215. // Module
  216.  
  217. var Module = {
  218.   registered: false,
  219.   
  220.   registerSelf: function(compMgr, fileSpec, location, type) 
  221.   {
  222.     if (!this.registered) {
  223.       compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar)
  224.              .registerFactoryLocation(kServiceCId,
  225.                                       kServiceName,
  226.                                       kServiceCtrId, 
  227.                                       fileSpec,
  228.                                       location, 
  229.                                       type);
  230.       const catman = Components.classes['@mozilla.org/categorymanager;1']
  231.                                .getService(Components.interfaces.nsICategoryManager);
  232.       var len = kServiceCats.length;
  233.       for (var j = 0; j < len; j++) {
  234.         catman.addCategoryEntry(kServiceCats[j],
  235.           kServiceCtrId, kServiceCtrId, true, true, null);
  236.       }
  237.       this.registered = true;
  238.     } 
  239.   },
  240.   
  241.   unregisterSelf: function(compMgr, fileSpec, location) 
  242.   {
  243.     compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar)
  244.            .unregisterFactoryLocation(kServiceCId, fileSpec);
  245.     const catman = Components.classes['@mozilla.org/categorymanager;1']
  246.                              .getService(Components.interfaces.nsICategoryManager);
  247.     var len = kServiceCats.length;
  248.     for (var j = 0; j < len; j++) {
  249.       catman.deleteCategoryEntry(kServiceCats[j], kServiceCtrId, true);
  250.     }
  251.   },
  252.   
  253.   getClassObject: function(compMgr, cid, iid) 
  254.   {
  255.     if(cid.equals(kServiceCId))
  256.       return kServiceFactory;
  257.     
  258.     throw Components.results[
  259.       iid.equals(Components.interfaces.nsIFactory)
  260.       ? "NS_ERROR_NO_INTERFACE"
  261.       : "NS_ERROR_NOT_IMPLEMENTED"
  262.     ];
  263.     
  264.   },
  265.   
  266.   canUnload: function(compMgr) 
  267.   {
  268.     return true;
  269.   }
  270. };
  271.  
  272. // entrypoint
  273. function NSGetModule(compMgr, fileSpec) {
  274.   return Module;
  275. }
  276.